This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
~Gus Minjumimanetsi 22.Oct.03 03:19 PM a Web browser Domino Designer6.0.2 CF2All Platforms
Agent, Error cleaning up agent threads...
I have this agent which is calling an EJB.It works fine the first time ..when it exits out it gives me an error "Error cleaning up agent threads".I have checked for active threads before exiting out..
I am using Domino6.02 and WAS5.
/**
* Creates connection to testEJB and executes
* a method on the ejb
*/
public void testEJB() {
out("Entered testEJB method");
com.ibm.websphere.naming.WsnInitialContextFactory f = new com.ibm.websphere.naming.WsnInitialContextFactory();
out("after com.ibm.websphere.naming.WsnInitialContextFactory;");
Properties prop = new Properties();
prop.put("java.naming.factory.initial", "com.ibm.websphere.naming.WsnInitialContextFactory" );
prop.put("java.naming.provider.url", "iiop://....");